CountAllValues Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Gets a total count of values in the collection. This default implementation is slow; it enumerates all of the keys in the dictionary and calls CountValues on each. A derived class may be able to supply a more efficient implementation.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
protected virtual int CountAllValues()
Visual Basic (Declaration)
Protected Overridable Function CountAllValues As Integer
Visual C++
protected:
virtual int CountAllValues ()

Return Value

The total number of values associated with all keys in the dictionary.

See Also